home *** CD-ROM | disk | FTP | other *** search
/ Learn Microsoft Visual Basic 6.0 Now / Learn Microsoft Visual Basic 6.0 Now (Microsoft Press)(X03-58607)(1998).ISO / media / chap12 / b12a005.cc2 < prev    next >
Text File  |  1998-06-07  |  1KB  |  24 lines

  1. 0, In this chapter you will learn how to 
  2. 3, create your own objects in a program by 
  3. 5, using a special file called a Class 
  4. 7, Module. Custom objects will bring a number of 
  5. 10, benefits to your programming projects, 
  6. 12, including conceptual clarity, fewer 
  7. 14, software defects, and an overall reduction in 
  8. 17, development time. First, you will learn 
  9. 20, a few important terms and concepts 
  10. 22, associated with Object Oriented Programming, 
  11. 25, a software development methodology 
  12. 27, associated with the creation and 
  13. 29, manipulation of objects. Next, you will learn how 
  14. 32, to create a Class Module in a Visual 
  15. 34, Basic project, and how to customize a new 
  16. 37, object with its own properties and 
  17. 39, methods. Finally, you will learn how to 
  18. 42, instantiate the object in a program and perform 
  19. 44, useful work by setting its properties 
  20. 48, and calling its methods. As you will see, 
  21. 51, working with custom objects is simlar 
  22. 53, to creating and using functions in a 
  23. 55, standard module.
  24. 58, END